1 package uba.db.table.io;
2
3 import uba.db.table.Row;
4
5 /***
6 * @version $Revision: 1.3 $
7 */
8 public interface TableReader {
9
10 boolean hasMoreRows();
11
12 Row fetchRow() throws FetchRowException;
13
14 void close();
15 }